home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IELoadWait.au3 < prev    next >
Text File  |  2007-09-08  |  447b  |  11 lines

  1. ; *******************************************************
  2. ; Example 1 - Open the AutoIt forum page, tab to the "View new posts"
  3. ;                link and activate the link with the enter key.
  4. ;                Then wait for the page load to complete    before moving on.
  5. ; *******************************************************
  6. ;
  7. #include <IE.au3>
  8. $oIE = _IECreate ("http://www.autoitscript.com/forum/index.php")
  9. Send("{TAB 12}")
  10. Send("{ENTER}")
  11. _IELoadWait ($oIE)